orcli import jsonl

import JSON Lines / newline-delimited JSON

Usage

Arguments
Path to one or more files or URLs. When FILE is -, read standard input.
(repeatable)
Options
rename columns after import to remove record path fragments
attempt to parse cell text into numbers
add column with file source
add column with archive file name
load at most x row(s) of data
preserve empty strings
trim leading & trailing whitespace from strings
set a name for the OpenRefine project
set project tags (comma separated)
suppress log output, print errors only
Parent Environment Variables
URL to OpenRefine server

Examples

orcli import jsonl "file"
orcli import jsonl "file1" "file2"
orcli import jsonl "https://example.com/file.json"
orcli import jsonl --rename <(orcli export jsonl "duplicates")
orcli import jsonl "file" \
  --rename \
  --storeEmptyStrings \
  --trimStrings \
  --projectName "duplicates" \
  --projectTags "test,urgent"